home *** CD-ROM | disk | FTP | other *** search
/ Software of the Month Cl… (Business) 1997 November / Software of the Month Club - Business Shareware (Volume 243) (November 1997).iso / dos / biz / Parse / EXAMPL10.POM < prev    next >
Encoding:
Text File  |  1997-08-27  |  406 b   |  21 lines

  1. ;
  2. ;   Allow null lines
  3. ;
  4. MINLEN "0"
  5. ;
  6. ;   Decide which lines to properize
  7. ;
  8. IF $FLINE[1] = " " THEN prop = "Y" ELSE "N"
  9. IF $FLINE[1] = "-" THEN prop = "Y"
  10. ;
  11. ;   Properize, using the Properization Exceptions File GENERIC.PEF
  12. ;   The "empty" (null) methods string means "use all methods except S"
  13. ;
  14. BEGIN prop = "Y"
  15.   PROPER  $FLINE  ""  "GENERIC.PEF"
  16. END
  17. ;
  18. ;   Output
  19. ;
  20. OUTEND |{$FLINE}
  21.